Sha256: de44c3c0ebcb5ff598d03ec9e7821df75bb25dd5e61cb3dc4a9cc1e2a4391ee5

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

require 'test_helper'

module PivotalReporter
  class StoriesControllerTest < ActionController::TestCase
    test "should get index" do
      get :index
      assert_response :success
    end
  
    test "should get new" do
      get :new
      assert_response :success
    end
  
    test "should get create" do
      get :create
      assert_response :success
    end
  
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pivotal_reporter-0.7.2 test/functional/pivotal_reporter/stories_controller_test.rb
pivotal_reporter-0.7.1 test/functional/pivotal_reporter/stories_controller_test.rb
pivotal_reporter-0.7.0 test/functional/pivotal_reporter/stories_controller_test.rb