Commit 97a79e393ae6e1ef27814d65c69a9210885f1213

Authored by Antonio Terceiro
1 parent 037e6360

profile_description_block: fix indentation

plugins/profile_description_block/test/unit/profile_description_block_test.rb
1 1 require File.expand_path(File.dirname(__FILE__) + "/../../../../test/test_helper")
2 2  
3 3 class ProfileDescriptionBlockTest < ActiveSupport::TestCase
4   - def setup
5   - e = Environment.default
  4 + def setup
  5 + e = Environment.default
6 6 e.enabled_plugins = ['ProfileDescriptionPlugin']
7 7 @person = create_user('test_user').person
8 8 @profile = Profile.create!(:identifier => '1236',
9 9 :name => 'blabla',
10 10 :description => "")
11   - end
  11 + end
12 12  
13 13 should 'describe itself' do
14 14 assert_not_equal Block.description, ProfileDescriptionBlock.description
... ...