File tree 4 files changed +18
-27
lines changed
4 files changed +18
-27
lines changed Original file line number Diff line number Diff line change 2
2
3
3
describe Activity do
4
4
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 ) }
12
7
end
13
8
end
Original file line number Diff line number Diff line change 2
2
3
3
describe Attachment do
4
4
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' )
11
14
end
12
15
end
13
16
end
Original file line number Diff line number Diff line change 2
2
3
3
describe Channel do
4
4
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 ) }
12
7
end
13
8
14
9
describe "user_connect" do
Original file line number Diff line number Diff line change 2
2
3
3
describe User do
4
4
describe "associations" do
5
- it "should have many activities" do
6
- should have_many ( :activities )
7
- end
5
+ it { should have_many ( :activities ) }
8
6
end
9
7
10
8
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 )
13
11
end
14
12
15
13
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 )
18
16
end
19
17
end
You can’t perform that action at this time.
0 commit comments