2013-06-01 01:20:09 +00:00
|
|
|
module AWS
|
|
|
|
class FakeEC2
|
|
|
|
def initialize
|
|
|
|
end
|
|
|
|
|
|
|
|
class Instance
|
|
|
|
def initialize
|
|
|
|
end
|
2013-06-04 01:51:01 +00:00
|
|
|
|
|
|
|
def terminate(decrement_desired_capacity)
|
|
|
|
end
|
2013-06-04 02:08:56 +00:00
|
|
|
|
|
|
|
def id
|
|
|
|
'i-test'
|
|
|
|
end
|
2013-06-01 01:20:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|