Added initial forumer test

This commit is contained in:
Chris Blanchard 2015-08-20 18:11:29 +01:00
parent 53110c9aa4
commit e34d21dd00
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,7 @@
FactoryGirl.define do
factory :forumer do
forum
group
access Forumer::ACCESS_TOPIC
end
end

View file

@ -0,0 +1,27 @@
# == Schema Information
#
# Table name: forums
#
# id :integer not null, primary key
# title :string(255)
# description :string(255)
# category_id :integer
# created_at :datetime
# updated_at :datetime
# position :integer
#
require "spec_helper"
describe Forumer do
describe "create" do
let(:forumer) { build :forumer }
it "creates a new forumer" do
expect(forumer.valid?).to eq(true)
expect do
forumer.save!
end.to change(Forumer, :count).by(1)
end
end
end