Skip to content

Commit

Permalink
updated stream reader and writer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-aladev committed Jul 6, 2022
1 parent ab37205 commit e114d55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 130 deletions.
2 changes: 1 addition & 1 deletion docs/created.rid
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Mon, 04 Jul 2022 12:58:32 +0300
Wed, 06 Jul 2022 19:57:30 +0300
lib/zstds.rb Wed, 06 Nov 2019 13:34:29 +0300
lib/zstds/dictionary.rb Mon, 04 Jul 2022 11:54:49 +0300
lib/zstds/error.rb Fri, 01 Jul 2022 17:12:27 +0300
Expand Down
Binary file modified docs/js/search_index.js.gz
Binary file not shown.
125 changes: 0 additions & 125 deletions test/stream/abstract.rb

This file was deleted.

4 changes: 2 additions & 2 deletions test/stream/reader.test.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Ruby bindings for zstd library.
# Copyright (c) 2019 AUTHORS, MIT License.

require "adsp/test/stream/abstract"
require "set"
require "socket"
require "zstds/stream/reader"
require "zstds/string"
require "stringio"

require_relative "abstract"
require_relative "../common"
require_relative "../minitest"
require_relative "../option"
Expand All @@ -16,7 +16,7 @@
module ZSTDS
module Test
module Stream
class Reader < Abstract
class Reader < ADSP::Test::Stream::Abstract
Target = ZSTDS::Stream::Reader
String = ZSTDS::String

Expand Down
4 changes: 2 additions & 2 deletions test/stream/writer.test.rb
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# Ruby bindings for zstd library.
# Copyright (c) 2019 AUTHORS, MIT License.

require "adsp/test/stream/abstract"
require "set"
require "socket"
require "stringio"
require "zstds/stream/writer"
require "zstds/string"

require_relative "abstract"
require_relative "../common"
require_relative "../minitest"
require_relative "../option"

module ZSTDS
module Test
module Stream
class Writer < Abstract
class Writer < ADSP::Test::Stream::Abstract
Target = ZSTDS::Stream::Writer
String = ZSTDS::String

Expand Down

0 comments on commit e114d55

Please sign in to comment.