cirandas.net

ref: master

test/mocks/environment.rb


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
class Environment
  def self.available_features
    {
    'feature1' => 'Enable Feature 1',
    'feature2' => 'Enable Feature 2',
    'feature3' => 'Enable Feature 3',
    'xmpp_chat' => 'Feature to enable/disabled chat (required here to make tests)',
    }
  end
end