Skip to content

Commit

Permalink
Finished static pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanif, Hakimuddin committed May 9, 2014
1 parent 80ac80a commit 5e82253
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 5 deletions.
3 changes: 3 additions & 0 deletions app/controllers/static_pages_controller.rb
Expand Up @@ -4,4 +4,7 @@ def home

def help
end

def aboutus
end
end
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.erb
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>SampleApp</title>
<title>Ruby on Rails Tutorial Sample App | <%= yield(:title) %></title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
Expand Down
8 changes: 8 additions & 0 deletions app/views/static_pages/aboutus.html.erb
@@ -0,0 +1,8 @@
<% provide(:title, 'About Us') %>
<h1>About Us</h1>
<p>
The <a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
is a project to make a book and screencasts to teach web development
with <a href="http://rubyonrails.org/">Ruby on Rails</a>. This
is the sample application for the tutorial.
</p>
10 changes: 8 additions & 2 deletions app/views/static_pages/help.html.erb
@@ -1,2 +1,8 @@
<h1>StaticPages#help</h1>
<p>Find me in app/views/static_pages/help.html.erb</p>
<% provide(:title, 'Help') %>
<h1>Help</h1>
<p>
Get help on the Ruby on Rails Tutorial at the
<a href="http://railstutorial.org/help">Rails Tutorial help page</a>.
To get help on this sample app, see the
<a href="http://railstutorial.org/book">Rails Tutorial book</a>.
</p>
9 changes: 7 additions & 2 deletions app/views/static_pages/home.html.erb
@@ -1,2 +1,7 @@
<h1>StaticPages#home</h1>
<p>Find me in app/views/static_pages/home.html.erb</p>
<% provide(:title, 'Home') %>
<h1>Sample App</h1>
<p>
This is the home page for the
<a href="http://railstutorial.org/">Ruby on Rails Tutorial</a>
sample application.
</p>
1 change: 1 addition & 0 deletions config/routes.rb
@@ -1,6 +1,7 @@
SampleApp::Application.routes.draw do
get "static_pages/home"
get "static_pages/help"
get "static_pages/aboutus"
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".

Expand Down
33 changes: 33 additions & 0 deletions spec/requests/static_pages_spec.rb
@@ -0,0 +1,33 @@
require 'spec_helper'

describe "Static pages" do

describe "Home page" do

it "should have content 'Sample app'" do
# Run the generator again with the --webrat flag if you want to use webrat methods/matchers
visit '/static_pages/home'

expect(page).to have_content('Sample App')
end
end

describe "Help page" do

it "should have content Help" do
visit '/static_pages/help'
expect(page).to have_content('Help')
end

end

describe "About page" do

it "should have content 'About Us'" do
visit '/static_pages/aboutus'
expect(page).to have_content('About Us')
end

end

end
2 changes: 2 additions & 0 deletions spec/spec_helper.rb
Expand Up @@ -39,4 +39,6 @@
# the seed, which is printed after each run.
# --seed 1234
config.order = "random"

config.include Capybara::DSL
end

0 comments on commit 5e82253

Please sign in to comment.