Sha256: d24e2620b8ab233c82e07d29866a9f2a2b72c565acaadfc2d76014c48b9ba5e8

Contents?: true

Size: 454 Bytes

Versions: 57

Compression:

Stored size: 454 Bytes

Contents

require 'rails_helper'

RSpec.describe "tests/index", type: :view do
  before(:each) do
    assign(:tests, [
      Test.create!(
        :price => 2.5,
        :name => "MyText"
      ),
      Test.create!(
        :price => 2.5,
        :name => "MyText"
      )
    ])
  end

  it "renders a list of tests" do
    render
    assert_select "tr>td", :text => 2.5.to_s, :count => 2
    assert_select "tr>td", :text => "MyText".to_s, :count => 2
  end
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
wordjelly-auth-1.6.0 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.9 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.8 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.7 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.6 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.5 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.4 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.3 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.2 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.1 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.5.0 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.9 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.8 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.7 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.6 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.5 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.4 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.3 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.2 spec/dummy/spec/views/tests/index.html.erb_spec.rb
wordjelly-auth-1.4.0 spec/dummy/spec/views/tests/index.html.erb_spec.rb