Sha256: b53366acbcbc9126917cb8d1140b94b267b0cf51f428738a37c1dbf4693e1883

Contents?: true

Size: 883 Bytes

Versions: 6

Compression:

Stored size: 883 Bytes

Contents

require_relative 'payload'

module Noticent
  module Testing
    # this is an example payload for post as scope
    class PostPayload < Noticent::Testing::Payload
      attr_accessor :some_attribute
      attr_accessor :_users
      attr_accessor :post_id

      def users
        @_users
      end

      def owners
        []
      end

      def self.some_event(some_value)
        # nop
      end

      def self.foo(options)
        # nop
      end

      def self.boo
        # nop
      end

      def self.one
        # nop
	  end
	  
	  def self.only_here
		# nop
	  end

      def self.two
        # nop
      end

      def self.tfa_enabled
        # nop
      end

      def self.sign_up
        # nop
      end

      def self.new_signup
        # nop
      end

      def self.fuzz
        # nop
      end

      def self.buzz
        # nop
      end

    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
noticent-0.0.6 testing/payloads/post_payload.rb
noticent-0.0.5 testing/payloads/post_payload.rb
noticent-0.0.4 testing/payloads/post_payload.rb
noticent-0.0.3 testing/payloads/post_payload.rb
noticent-0.0.2 testing/payloads/post_payload.rb
noticent-0.0.1 testing/payloads/post_payload.rb