Sha256: 1fa11e3d5d71ad2fa0c5f64e23d15b7547b779ef86d43bbabc646ee0f4472d59

Contents?: true

Size: 557 Bytes

Versions: 8

Compression:

Stored size: 557 Bytes

Contents

require 'test_helper'

module HelpPopups
  class TopicsControllerTest < 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
  
    test "should get edit" do
      get :edit
      assert_response :success
    end
  
    test "should get update" do
      get :update
      assert_response :success
    end
  
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
help_popups-1.0.5 test/functional/help_popups/topics_controller_test.rb
help_popups-1.0.4 test/functional/help_popups/topics_controller_test.rb
help_popups-1.0.3 test/functional/help_popups/topics_controller_test.rb
help_popups-1.0.2 test/functional/help_popups/topics_controller_test.rb
help_popups-1.0.1 test/functional/help_popups/topics_controller_test.rb
help_popups-1.0.0 test/functional/help_popups/topics_controller_test.rb
help_popups-0.1.1 test/functional/help_popups/topics_controller_test.rb
help_popups-0.1.0 test/functional/help_popups/topics_controller_test.rb