Sha256: 4d7b9deb6508feee2401220a28ede5a15d605324652cebd62189ebdd76d3de09

Contents?: true

Size: 632 Bytes

Versions: 10

Compression:

Stored size: 632 Bytes

Contents

require 'spec_helper'

describe "settings/index" do
  before(:each) do
    assign(:settings, [
      stub_model(Setting,
        :key => "Key",
        :value => "Value"
      ),
      stub_model(Setting,
        :key => "Key",
        :value => "Value"
      )
    ])
  end

  it "renders a list of settings" do
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "tr>td", :text => "Key".to_s, :count => 2
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "tr>td", :text => "Value".to_s, :count => 2
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
kuztuscms-0.0.10 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.9 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.8 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.7 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.6 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.5 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.4 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.3 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.2 spec/views/kuztuscms/settings/index.html.erb_spec.rb
kuztuscms-0.0.1 spec/views/kuztuscms/settings/index.html.erb_spec.rb