diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-20 20:34:25 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-20 20:34:25 +0000 |
commit | 6b1a1834ad1715145f047790c8391b8a5558bece (patch) | |
tree | e20cdddb20477b56a013eb3bc357b9b5ff0488a3 /spec/views/operations | |
parent | a3e98876e2f88b69fef2a9da7d65b3704b6bf0d2 (diff) |
Created new Operation model and fixed Event associations with it
Diffstat (limited to 'spec/views/operations')
-rw-r--r-- | spec/views/operations/edit.html.erb_spec.rb | 22 | ||||
-rw-r--r-- | spec/views/operations/index.html.erb_spec.rb | 20 | ||||
-rw-r--r-- | spec/views/operations/new.html.erb_spec.rb | 18 | ||||
-rw-r--r-- | spec/views/operations/show.html.erb_spec.rb | 14 |
4 files changed, 74 insertions, 0 deletions
diff --git a/spec/views/operations/edit.html.erb_spec.rb b/spec/views/operations/edit.html.erb_spec.rb new file mode 100644 index 0000000..3a2b5f0 --- /dev/null +++ b/spec/views/operations/edit.html.erb_spec.rb @@ -0,0 +1,22 @@ +require 'rails_helper' + +RSpec.describe "operations/edit", type: :view do + let(:operation) { + Operation.create!( + name: "MyString" + ) + } + + before(:each) do + assign(:operation, operation) + end + + it "renders the edit operation form" do + render + + assert_select "form[action=?][method=?]", operation_path(operation), "post" do + + assert_select "input[name=?]", "operation[name]" + end + end +end diff --git a/spec/views/operations/index.html.erb_spec.rb b/spec/views/operations/index.html.erb_spec.rb new file mode 100644 index 0000000..5fa64fe --- /dev/null +++ b/spec/views/operations/index.html.erb_spec.rb @@ -0,0 +1,20 @@ +require 'rails_helper' + +RSpec.describe "operations/index", type: :view do + before(:each) do + assign(:operations, [ + Operation.create!( + name: "Name" + ), + Operation.create!( + name: "Name" + ) + ]) + end + + it "renders a list of operations" do + render + cell_selector = Rails::VERSION::STRING >= '7' ? 'div>p' : 'tr>td' + assert_select cell_selector, text: Regexp.new("Name".to_s), count: 2 + end +end 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 diff --git a/spec/views/operations/show.html.erb_spec.rb b/spec/views/operations/show.html.erb_spec.rb new file mode 100644 index 0000000..7affaf4 --- /dev/null +++ b/spec/views/operations/show.html.erb_spec.rb @@ -0,0 +1,14 @@ +require 'rails_helper' + +RSpec.describe "operations/show", type: :view do + before(:each) do + assign(:operation, Operation.create!( + name: "Name" + )) + end + + it "renders attributes in <p>" do + render + expect(rendered).to match(/Name/) + end +end |