File: test_rake_scope.rb

package info (click to toggle)
rake 13.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 916 kB
  • sloc: ruby: 9,661; ansic: 19; sh: 19; makefile: 11
file content (45 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
require File.expand_path("../helper", __FILE__)

class TestRakeScope < Rake::TestCase # :nodoc:
  include Rake

  def test_path_against_empty_scope
    scope = Scope.make
    assert_equal scope, Scope::EMPTY
    assert_equal scope.path, ""
  end

  def test_path_against_one_element
    scope = Scope.make(:one)
    assert_equal "one", scope.path
  end

  def test_path_against_two_elements
    scope = Scope.make(:inner, :outer)
    assert_equal "outer:inner", scope.path
  end

  def test_path_with_task_name
    scope = Scope.make(:inner, :outer)
    assert_equal "outer:inner:task", scope.path_with_task_name("task")
  end

  def test_path_with_task_name_against_empty_scope
    scope = Scope.make
    assert_equal "task", scope.path_with_task_name("task")
  end

  def test_conj_against_two_elements
    scope = Scope.make.conj("B").conj("A")
    assert_equal Scope.make("A", "B"), scope
  end

  def test_trim
    scope = Scope.make("A", "B")
    assert_equal scope, scope.trim(0)
    assert_equal scope.tail, scope.trim(1)
    assert_equal scope.tail.tail, scope.trim(2)
    assert_equal scope.tail.tail, scope.trim(3)
  end
end