Sha256: a0c7e65142b1a51084b65a2d96c8a7b2e76e475881d4c1b4d8861622a50ac437

Contents?: true

Size: 330 Bytes

Versions: 4

Compression:

Stored size: 330 Bytes

Contents

require 'test_helper'

module Billing
  class AccountsControllerTest < ActionController::TestCase
    setup do
      @account = billing_accounts(:one)
    end

    test "should get index" do
      get :index
      assert_response :success
    end

    test "new" do
      get :new
      assert_response :success
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
billing-0.0.4b test/controllers/billing/accounts_controller_test.rb
billing-0.0.4a test/controllers/billing/accounts_controller_test.rb
billing-0.0.4 test/controllers/billing/accounts_controller_test.rb
billing-0.0.3 test/controllers/billing/accounts_controller_test.rb