OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/step_definitions/settings_steps.rb

45 lines
1.1 KiB

#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
Given /^the rest api is enabled$/ do
Setting.rest_api_enabled = "1"
end
Given /^the following languages are available:$/ do |table|
Setting.available_languages += table.raw.map(&:first)
end
#Given /^the "(.+?)" setting is set to (true|false)$/ do |name, trueish|
# Setting[name.to_sym] = (trueish == "true" ? "1" : "0")
#end
Given /^the "(.+?)" setting is set to (.+)$/ do |name, value|
value = case value
when "true"
"1"
when "false"
"0"
else
value
end
value = value.to_i if Setting.available_settings[name]["format"] == "int"
Setting[name.to_sym] = value
end
Then /^the "(.+?)" setting should be (true|false)$/ do |name, trueish|
Setting.send((name + "?").to_sym).should == (trueish == "true")
end
Given /^I save the settings$/ do
click_button('Save', :visible => true)
end