cirandas.net

ref: master

plugins/sub_organizations/test/unit/create_enterprise_test.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
require 'test_helper'

class CreateEnterpriseTest < ActiveSupport::TestCase

  should 'inlude the parent field in create enterprise' do
    create_enterprise = CreateEnterprise.new
    assert_nothing_raised { create_enterprise.sub_organizations_plugin_parent_to_be = '999' }
  end

end