mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
31 lines
627 B
Ruby
31 lines
627 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: topics
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# title :string(255)
|
||
|
# user_id :integer
|
||
|
# forum_id :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
# state :integer default(0), not null
|
||
|
#
|
||
|
|
||
|
require "spec_helper"
|
||
|
|
||
|
describe Topic do
|
||
|
let!(:user) { create :user }
|
||
|
let!(:forum) { create :forum }
|
||
|
|
||
|
describe "create" do
|
||
|
let(:topic) { build :topic, user: user, forum: forum }
|
||
|
|
||
|
it "creates a new topic" do
|
||
|
topic.first_post = "Foo"
|
||
|
expect do
|
||
|
topic.save!
|
||
|
end.to change(Topic, :count).by(1)
|
||
|
end
|
||
|
end
|
||
|
end
|