aboutsummaryrefslogtreecommitdiffstats
path: root/spec/views/operations/new.html.erb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/operations/new.html.erb_spec.rb')
-rw-r--r--spec/views/operations/new.html.erb_spec.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/views/operations/new.html.erb_spec.rb b/spec/views/operations/new.html.erb_spec.rb
new file mode 100644
index 0000000..cea6080
--- /dev/null
+++ b/spec/views/operations/new.html.erb_spec.rb
@@ -0,0 +1,18 @@
+require 'rails_helper'
+
+RSpec.describe "operations/new", type: :view do
+ before(:each) do
+ assign(:operation, Operation.new(
+ name: "MyString"
+ ))
+ end
+
+ it "renders new operation form" do
+ render
+
+ assert_select "form[action=?][method=?]", operations_path, "post" do
+
+ assert_select "input[name=?]", "operation[name]"
+ end
+ end
+end