diff --git a/app/views/css/_layout.sass b/app/views/css/_layout.sass index 3b9b5ab..a03f657 100644 --- a/app/views/css/_layout.sass +++ b/app/views/css/_layout.sass @@ -45,6 +45,7 @@ +clearfix :padding 12px :color #ccc + :min-height 379px h2, h3 :font-family "ChaletLondonNineteenSixty", "HelveticaNeue-Light", helvetica, arial, sans-serif diff --git a/test/stories/site_test.rb b/test/stories/site_test.rb index e391291..a2a9a86 100644 --- a/test/stories/site_test.rb +++ b/test/stories/site_test.rb @@ -8,16 +8,11 @@ class SiteTest < Test::Unit::TestCase assert_contain "Bitch Kitty Racing" end - scenario "A visitor goes to the testpage" do - visit "/test" - assert_contain "This is a Test, This is Only a Test" + scenario "A visitor goes to the January page" do + visit "/months/january" + assert_contain "January" end - - scenario "A visitor goes to the subfolder testpage" do - visit "/folder/test" - assert_contain "This is a Test of the Subfolder System" - end - + scenario "A visitor should see a 404 for a page that does not exist" do visit "/folder/testing" assert_contain "Sorry, the page /folder/testing could not be found" diff --git a/test/unit/month_test.rb b/test/unit/month_test.rb new file mode 100644 index 0000000..e69de29