Sha256: a0400c5734e8f756305aab23eb93df667b869c556401b291610533ff5ac13cde

Contents?: true

Size: 473 Bytes

Versions: 22

Compression:

Stored size: 473 Bytes

Contents

# -*- encoding : utf-8 -*-
require "test_helper"
require "rails/performance_test_help"

class CardCreateTest < ActionDispatch::PerformanceTest
  def initialize *args
    @name = "CardA"
    super *args
    Card::Auth.as Card::WagnBotID
  end

  def test_card_create_simple
    Card.create name: @name, content: "test content"
    @name = @name.next
  end

  def test_card_create_links
    Card.create name: @name, content: "test [[CardA]]"
    @name = @name.next
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
wagn-1.21.1 test/performance/card_create_test.rb
decko-0.3.3 test/performance/card_create_test.rb
decko-0.3.2 test/performance/card_create_test.rb
decko-0.3.1 test/performance/card_create_test.rb
decko-0.3.0 test/performance/card_create_test.rb
decko-0.2.2 test/performance/card_create_test.rb
decko-0.2.1 test/performance/card_create_test.rb
decko-0.2 test/performance/card_create_test.rb
decko-0.1 test/performance/card_create_test.rb
wagn-1.21.0 test/performance/card_create_test.rb
wagn-1.20.4 test/performance/card_create_test.rb
wagn-1.20.3 test/performance/card_create_test.rb
wagn-1.20.2 test/performance/card_create_test.rb
wagn-1.20.1 test/performance/card_create_test.rb
wagn-1.20.0 test/performance/card_create_test.rb
wagn-1.19.6 test/performance/card_create_test.rb
wagn-1.19.5 test/performance/card_create_test.rb
wagn-1.19.4 test/performance/card_create_test.rb
wagn-1.19.3 test/performance/card_create_test.rb
wagn-1.19.2 test/performance/card_create_test.rb