Project

General

Profile

Download (380 Bytes) Statistics
| Branch: | Tag: | Revision:

hammer-cli-csv / test / setup / setup_organizations.rb @ f370cc85

1
require './test/csv_test_helper'
2
require './lib/hammer_cli_csv'
3

    
4
module Setup
5
  class SetupOrganizations < MiniTest::Unit::TestCase
6
    def test_setup
7
      start_vcr
8

    
9
      stdout,stderr = capture {
10
        hammer.run(%W{--reload-cache csv organizations --verbose --file test/data/setup/organizations.csv})
11
      }
12
      assert_equal stderr, ''
13

    
14
      stop_vcr
15
    end
16
  end
17
end