mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
fix specs
This commit is contained in:
parent
4536f772c1
commit
e145e34ebe
1 changed files with 6 additions and 1 deletions
|
@ -97,6 +97,8 @@ describe PostCreator do
|
|||
"/users/#{admin.username}",
|
||||
"/unread/#{admin.id}",
|
||||
"/unread/#{admin.id}",
|
||||
"/latest",
|
||||
"/latest",
|
||||
"/topic/#{created_post.topic_id}",
|
||||
"/topic/#{created_post.topic_id}"
|
||||
].sort
|
||||
|
@ -112,6 +114,9 @@ describe PostCreator do
|
|||
p = creator.create
|
||||
end
|
||||
|
||||
latest = messages.find{|m| m.channel == "/latest"}
|
||||
latest.should_not be_nil
|
||||
|
||||
latest = messages.find{|m| m.channel == "/new"}
|
||||
latest.should_not be_nil
|
||||
|
||||
|
@ -121,7 +126,7 @@ describe PostCreator do
|
|||
user_action = messages.find{|m| m.channel == "/users/#{p.user.username}"}
|
||||
user_action.should_not be_nil
|
||||
|
||||
messages.length.should == 4
|
||||
messages.length.should == 5
|
||||
end
|
||||
|
||||
it 'extracts links from the post' do
|
||||
|
|
Loading…
Reference in a new issue