Created
January 6, 2012 12:21
Revisions
-
edzhelyov created this gist
Jan 6, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ require 'test_helper' class AnalyticsTaggingTest < ActionDispatch::IntegrationTest include Capybara::DSL context "The header of the page" do should "include tracking meta tag" do visit('/') assert page.has_selector?('meta[charset="utf-8"]') end end end