57 lines
1.6 KiB
Ruby
57 lines
1.6 KiB
Ruby
#-- encoding: UTF-8
|
|
#-- copyright
|
|
# ChiliProject is a project management system.
|
|
#
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require File.expand_path('../../test_helper', __FILE__)
|
|
|
|
class ProjectDropTest < ActiveSupport::TestCase
|
|
def setup
|
|
@project = Project.generate!
|
|
User.current = @user = User.generate!
|
|
@role = Role.generate!
|
|
Member.generate!(:principal => @user, :project => @project, :roles => [@role])
|
|
@drop = @project.to_liquid
|
|
end
|
|
|
|
context "drop" do
|
|
should "be a ProjectDrop" do
|
|
assert @drop.is_a?(ProjectDrop), "drop is not a ProjectDrop"
|
|
end
|
|
end
|
|
|
|
|
|
context "#name" do
|
|
should "return the project name" do
|
|
assert_equal @project.name, @drop.name
|
|
end
|
|
end
|
|
|
|
context "#identifier" do
|
|
should "return the project identifier" do
|
|
assert_equal @project.identifier, @drop.identifier
|
|
end
|
|
end
|
|
|
|
should "only load an object if it's visible to the current user" do
|
|
assert User.current.logged?
|
|
assert @project.visible?
|
|
|
|
@private_project = Project.generate!(:is_public => false)
|
|
|
|
assert !@private_project.visible?, "Project is visible"
|
|
@private_drop = ProjectDrop.new(@private_project)
|
|
assert_equal nil, @private_drop.instance_variable_get("@object")
|
|
assert_equal nil, @private_drop.name
|
|
end
|
|
end
|