Skip to content

Commit 5409535

Browse files
committed
Re wrote a few expects in model specs
1 parent 827cde1 commit 5409535

File tree

4 files changed

+18
-27
lines changed

4 files changed

+18
-27
lines changed

spec/models/activity_spec.rb

+2-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
describe Activity do
44
describe "associations" do
5-
it "should belong to user" do
6-
should belong_to(:user)
7-
end
8-
9-
it "should belong to channel" do
10-
should belong_to(:channel)
11-
end
5+
it { should belong_to(:user) }
6+
it { should belong_to(:channel) }
127
end
138
end

spec/models/attachment_spec.rb

+9-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
describe Attachment do
44
describe "associations" do
5-
it "should belong to channel" do
6-
should belong_to(:channel)
7-
end
8-
9-
it "should belong to user" do
10-
should belong_to(:user)
5+
it { should belong_to(:channel) }
6+
it { should belong_to(:user) }
7+
end
8+
9+
describe "#url" do
10+
subject { double('attachment', url: 'some_string', file: 'file') }
11+
12+
it "should return a string file_name" do
13+
expect(subject.url).to eq('some_string')
1114
end
1215
end
1316
end

spec/models/channel_spec.rb

+2-7
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22

33
describe Channel do
44
describe "associations" do
5-
it "should have many activities" do
6-
should have_many(:activities)
7-
end
8-
9-
it "should have many attachments" do
10-
should have_many(:attachments)
11-
end
5+
it { should have_many(:activities) }
6+
it { should have_many(:attachments) }
127
end
138

149
describe "user_connect" do

spec/models/user_spec.rb

+5-7
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22

33
describe User do
44
describe "associations" do
5-
it "should have many activities" do
6-
should have_many(:activities)
7-
end
5+
it { should have_many(:activities) }
86
end
97

108
it "should have authentication token on creation" do
11-
@user = FactoryGirl.create(:user)
12-
@user.authentication_token.should_not be_nil
9+
subject { @user.authentication_token }
10+
expect(subject).to_not eq(nil)
1311
end
1412

1513
it "should have gravatar hash on creation" do
16-
@user = FactoryGirl.create(:user)
17-
@user.gravatar_hash.should_not be_nil
14+
subject { @user.gravatar_hash }
15+
expect(subject).to_not eq(nil)
1816
end
1917
end

0 commit comments

Comments
 (0)