Sha256: abd52240b3f79521d6e9a50570d3c8bef11100a1e911b024591357fcbe74b46c

Contents?: true

Size: 678 Bytes

Versions: 16

Compression:

Stored size: 678 Bytes

Contents

riml_include 'dsl.riml'

class BeforeErrorHookSpec_err
  defm describe
    return 'BeforeErrorHookSpec'
  end

  defm before
    a = c
  end

end

class BeforeEachHookSpec_err
  defm describe
    return 'Before_each hooks'
  end

  defm before_each
    a = b
  end

  defm it_has_stuff_from_before_each
    expect(self.stuff).to_equal('foo')
  end

end

class AfterErrorHookSpec_err
  defm describe
    return 'AfterErrorHookSpec'
  end

  defm after
    a = b
  end

end

class AfterEachHookSpec_err
  defm describe
    return 'Before_each hooks'
  end

  defm after_each
    a = b
  end

  defm it_has_stuff_from_before_each
    expect(self.stuff).to_equal('foo')
  end

end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
speckle-0.2.0 spec_errors/hook_errors_spec.riml
speckle-0.1.31 spec_errors/hook_errors_spec.riml
speckle-0.1.30 spec_errors/hook_errors_spec.riml
speckle-0.1.29 spec_errors/hook_errors_spec.riml
speckle-0.1.28 spec_errors/hook_errors_spec.riml
speckle-0.1.27 spec_errors/hook_errors_spec.riml
speckle-0.1.26 spec_errors/hook_errors_spec.riml
speckle-0.1.25 spec_errors/hook_errors_spec.riml
speckle-0.1.24 spec_errors/hook_errors_spec.riml
speckle-0.1.23 spec_errors/hook_errors_spec.riml
speckle-0.1.22 spec_errors/hook_errors_spec.riml
speckle-0.1.21 spec_errors/hook_errors_spec.riml
speckle-0.1.20 spec_errors/hook_errors_spec.riml
speckle-0.1.19 spec_errors/hook_errors_spec.riml
speckle-0.1.18 spec_errors/hook_errors_spec.riml
speckle-0.1.17 spec_errors/hook_errors_spec.riml