]> git.openstreetmap.org Git - rails.git/blob - test/system/create_note_test.rb
Show 'api offline' message on new note page
[rails.git] / test / system / create_note_test.rb
1 require "application_system_test_case"
2
3 class CreateNoteTest < ApplicationSystemTestCase
4   test "can create note" do
5     visit new_note_path(:anchor => "map=18/0/0")
6
7     assert_button "Add Note", :disabled => true
8
9     fill_in "text", :with => "Some newly added note description"
10     click_on "Add Note"
11
12     assert_content "Unresolved note ##{Note.last.id}"
13     assert_content "Some newly added note description"
14   end
15
16   test "cannot create note when api is readonly" do
17     with_settings(:status => "api_readonly") do
18       visit new_note_path(:anchor => "map=18/0/0")
19
20       assert_no_button "Add Note", :disabled => true
21     end
22   end
23 end