mirror of
https://github.com/fluent/fluentd-ui.git
synced 2026-05-05 10:56:11 +02:00
Add test/integration/fluentd/setting/notes_test.rb
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
This commit is contained in:
parent
3567a98afc
commit
2e3d599628
27
test/integration/fluentd/setting/notes_test.rb
Normal file
27
test/integration/fluentd/setting/notes_test.rb
Normal file
@ -0,0 +1,27 @@
|
||||
require "test_helper"
|
||||
|
||||
class NotesTest < ActionDispatch::IntegrationTest
|
||||
include ConfigHistories::DaemonHaveSomeConfigHistories
|
||||
|
||||
setup do
|
||||
login_with(FactoryBot.build(:user))
|
||||
end
|
||||
|
||||
sub_test_case "update" do
|
||||
setup do
|
||||
visit("/daemon/setting/histories")
|
||||
end
|
||||
|
||||
test "update a content of the first note" do
|
||||
content = "This config file is for ..."
|
||||
within(first("form")) do
|
||||
first(".note-content").set(content)
|
||||
click_button(I18n.t('terms.save'))
|
||||
end
|
||||
|
||||
within(first("form")) do
|
||||
assert_equal(content, first(".note-content").value)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
x
Reference in New Issue
Block a user