]> git.openstreetmap.org Git - rails.git/blob - test/features/can_access_home_test.rb
Create an IssueCommentsController for managing IssueComments
[rails.git] / test / features / can_access_home_test.rb
1 require "test_helper"
2
3 class CanAccessHomeTest < Capybara::Rails::TestCase
4   def setup
5     stub_hostip_requests
6   end
7
8   def test_it_works
9     visit root_path
10     assert page.has_content? "BOpenStreetMap"
11   end
12 end