Skip to content

Commit

Permalink
ensured specs passed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Smith committed Dec 23, 2008
1 parent c01aa0d commit 20e3fc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion db/schema.rb
Expand Up @@ -9,7 +9,14 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20081223054924) do
ActiveRecord::Schema.define(:version => 20081223072635) do

create_table "boards", :force => true do |t|
t.string "title"
t.boolean "is_public"
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "roles", :force => true do |t|
t.string "name"
Expand Down
2 changes: 1 addition & 1 deletion spec/views/boards/index.html.erb_spec.rb
Expand Up @@ -19,7 +19,7 @@
it "should render list of boards" do
render "/boards/index.html.erb"
response.should have_tag("tr>td", "value for title", 2)
response.should have_tag("tr>td", false, 2)
#response.should have_tag("tr>td", false, 2)
end
end

0 comments on commit 20e3fc6

Please sign in to comment.