Fixed user settings.
This commit is contained in:
parent
ef2ce98e46
commit
f759552022
19 changed files with 925 additions and 5 deletions
14
vendor/plugins/acts_as_configurable/test/fixtures/entities.rb
vendored
Normal file
14
vendor/plugins/acts_as_configurable/test/fixtures/entities.rb
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
class TestUser < ActiveRecord::Base
|
||||
|
||||
acts_as_configurable
|
||||
|
||||
end
|
||||
|
||||
|
||||
|
||||
class TestGroup < ActiveRecord::Base
|
||||
|
||||
acts_as_configurable
|
||||
acts_as_configurable_target
|
||||
|
||||
end
|
||||
4
vendor/plugins/acts_as_configurable/test/fixtures/test_groups.yml
vendored
Normal file
4
vendor/plugins/acts_as_configurable/test/fixtures/test_groups.yml
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
test_groups_001:
|
||||
id: "1"
|
||||
display_name: Clan of the Cavebear
|
||||
11
vendor/plugins/acts_as_configurable/test/fixtures/test_users.yml
vendored
Normal file
11
vendor/plugins/acts_as_configurable/test/fixtures/test_users.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
test_users_001:
|
||||
name: Bob Testuser
|
||||
id: "1"
|
||||
login: bob
|
||||
email: bob@example.com
|
||||
test_users_002:
|
||||
name: Ken Testuser
|
||||
id: "2"
|
||||
login: ken
|
||||
email: ken@example.com
|
||||
Loading…
Add table
Add a link
Reference in a new issue