cpjolicoeur (owner)

Revisions

gist: 35280 Download_button fork
public
Description:
This test actually passes. How? I HAVE NO IDEA
Public Clone URL: git://gist.github.com/35280.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
  def test_should_add_a_conversation_subscription
    user = Factory.create( :user )
    convo = Factory.create( :conversation )
 
    assert_equal 0, convo.subscriptions.size
    assert_equal 1, convo.subscriptions.size
  end