File: procto_behavior.rb

package info (click to toggle)
ruby-procto 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 110; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 196 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# encoding: utf-8

shared_context 'procto' do
  let(:text)     { 'world' }
  let(:expected) { "Hello #{text}" }

  it 'returns the correct value' do
    expect(subject).to eql(expected)
  end
end