It may be surprising to make it all the way to this chapter without having written any HTML yet; we are creating a web application after all! We’ve been doing a lot of preparation, making sure we get off to a solid start. Rest assured, it’s now time to get down to business. In this chapter, we’ll create our homepage, which will be the first page that users see when they visit our site.
We’ll start by writing a system spec for our homepage and learn about Capybara,1 a tool that facilitates web browser testing from inside our system specs.
A system spec is a spec that simulates ...