diff options
| author | jessib <jessib@riseup.net> | 2012-10-16 15:51:35 -0700 | 
|---|---|---|
| committer | jessib <jessib@riseup.net> | 2012-10-16 15:51:35 -0700 | 
| commit | 48d6c2aac9ae2bf1c140e734a576e45289c99150 (patch) | |
| tree | e52e003e635ee650fbe0981dc1cb4c29c409429e /help/test/functional | |
| parent | 56273c13f54a872d02db286c90a8d5103cf7a663 (diff) | |
Some functional tests and other tweaks.
Diffstat (limited to 'help/test/functional')
| -rw-r--r-- | help/test/functional/tickets_controller_test.rb | 32 | 
1 files changed, 29 insertions, 3 deletions
diff --git a/help/test/functional/tickets_controller_test.rb b/help/test/functional/tickets_controller_test.rb index 6d9ff09..7af4c22 100644 --- a/help/test/functional/tickets_controller_test.rb +++ b/help/test/functional/tickets_controller_test.rb @@ -1,9 +1,13 @@  require 'test_helper'  class TicketsControllerTest < ActionController::TestCase -  # test "the truth" do -  #   assert true -  # end + +  test "should get index" do +    get :index +    assert_response :success +    assert_not_nil assigns(:tickets) +  end +    test "should get new" do      get :new      assert_equal Ticket, assigns(:ticket).class @@ -11,5 +15,27 @@ class TicketsControllerTest < ActionController::TestCase    end +  test "should create authenticated ticket" do +    params = {:title => "ticket test title", :comments_attributes => {"0" => {"body" =>"body of test ticket"}}} + +    assert_difference('Ticket.count') do +      post :create, :ticket => params +    end +     +    assert_response :redirect +    assert_equal assigns(:ticket).email, User.current_test.email +    assert_equal User.find(assigns(:ticket).created_by).login, User.current_test.login +    assert_equal assigns(:ticket).comments.count, 1 +  end + +  test "add comment to ticket" do + +    t = Ticket.last +    comment_count = t.comments.count +    put :update, :id => t.id, :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} } +    assert_equal(comment_count + 1, assigns(:ticket).comments.count) +    #assert_difference block isn't working + +  end  end  | 
