Commit 97a79e393ae6e1ef27814d65c69a9210885f1213
1 parent
037e6360
Exists in
master
and in
29 other branches
profile_description_block: fix indentation
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
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 | ... | ... |