ref: master
plugins/variables/test/unit/variables_plugin_test.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
require 'test_helper' class VariablesPluginTest < ActiveSupport::TestCase def setup @environment = Environment.default @plugin = VariablesPlugin.new end attr_reader :environment, :plugin should 'have a name' do assert_not_equal Noosfero::Plugin.plugin_name, VariablesPlugin::plugin_name end should 'describe yourself' do assert_not_equal Noosfero::Plugin.plugin_description, VariablesPlugin::plugin_description end end |