Displaying 1 result from an estimated 1 matches for "get_next_uuid".
Did you mean:
get_next_oid
2006 Jun 16
2
need help mocking out a method
...@mock_uuid = ["7cd00940-df96-0128-85c8-000a95ba12c4",
"cca3c300-df8f-0128-85c8-000a95ba12c4",
"cca3c300-df8f-0128-85c8-000a95ba12c4",
"cca3c300-df8f-0128-85c8-000a95ba12c4",
"cca3c300-df8f-0128-85c8-000a95ba12c4"]
def get_next_uuid
@mock_uuid.shift
end
end
class StorageControllerApiTest < Test::Unit::TestCase
[big snip of standard stuff]
def test_assign_uuid
a = @controller.get_next_uuid
# fails before assertion
end
end
cremes$ ruby test/functional/storage_api_test.rb -n test_assign_uuid
Loaded s...