forked from harlantwood/dreamy
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from arnebrasseur/api_changed
API no longer returns passwords.
- Loading branch information
Showing
5 changed files
with
8 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ class DreamyUserTest < Test::Unit::TestCase | |
<disk_used_mb>123.04</disk_used_mb> | ||
<gecos>Joe Schmoe</gecos> | ||
<home>spork.Dreamy.com</home> | ||
<password>YahRight!</password> | ||
<quota_mb>50</quota_mb> | ||
<shell>/bin/bash</shell> | ||
<type>mail</type> | ||
|
@@ -25,12 +24,11 @@ class DreamyUserTest < Test::Unit::TestCase | |
assert_equal 123.04, u.disk_used_mb | ||
assert_equal "Joe Schmoe", u.gecos | ||
assert_equal "spork.Dreamy.com", u.home | ||
assert_equal "YahRight!", u.password | ||
assert_equal 50, u.quota_mb | ||
assert_equal "/bin/bash", u.shell | ||
assert_equal "mail", u.type | ||
assert_equal "[email protected]", u.username | ||
end | ||
end | ||
|
||
end | ||
end |