test/test_helper.rb in invoice_bar-0.0.6 vs test/test_helper.rb in invoice_bar-0.0.7

- old
+ new

@@ -13,28 +13,30 @@ ActiveRecord::Base.logger = Logger.new(STDOUT) require 'shoulda' require 'faker' require 'factory_girl' + +FactoryGirl.definition_file_paths = [File.expand_path("../../test/factories", __FILE__)] FactoryGirl.find_definitions +# Don't enforce locales for now +I18n.enforce_available_locales = false + class ActiveSupport::TestCase # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order. # # Note: You'll currently still have to declare fixtures explicitly in integration tests # -- they do not yet inherit this setting #fixtures :all - # Add more helper methods to be used by all tests here... + # Add more helper methods to be used by all tests here include FactoryGirl::Syntax::Methods include Sorcery::TestHelpers::Rails - - FactoryGirl.define do - sequence(:invoice_bar_name) { |n| "Name #{hash[n]}9" } - sequence(:invoice_bar_email) { |n| "#{hash[n]}#{n}#{n}abc9@email.cz" } - sequence(:invoice_bar_ic) { |n| "#{n}78974" } - sequence(:invoice_bar_amount) { |n| "#{n}" } - sequence(:invoice_bar_invoice_number) { |n| "20100112#{n}" } - sequence(:invoice_bar_currency_name) { |n| "kc#{n}" } - sequence(:invoice_bar_currency_symbol) { |n| "k#{n}" } - end -end \ No newline at end of file + + # For login_user method + include Sorcery::TestHelpers::Rails::Controller +end + +# Namespace for API tests +class InvoiceBar::API +end