Method: Terraspace::Tester::Meta#name

Defined in:
lib/terraspace/tester/meta.rb

#nameObject Also known as: tester



8
9
10
11
12
13
14
# File 'lib/terraspace/tester/meta.rb', line 8

def name
  name = @raw.keys.first
  unless name
    raise "No tester gem found. Are you sure you have the terraspace test gem configured in your Gemfile?"
  end
  name.camelize
end