Key | Value |
---|---|
CRC32 | F0BC93B1 |
FileName | usr/share/jruby/lib/ruby/gems/shared/gems/minitest-5.11.3/lib/minitest/expectations.rb |
FileSize | 5891 |
MD5 | 2D722FBD224A9CA575CC5A787FA5410D |
OpSystemCode | {'MfgCode': '1006', 'OpSystemCode': '362', 'OpSystemName': 'TBD', 'OpSystemVersion': 'none'} |
ProductCode | {'ApplicationType': 'Operating System', 'Language': 'Multilanguage', 'MfgCode': '2529', 'OpSystemCode': '913', 'ProductCode': '185406', 'ProductName': 'Linux Mint Xfce (Sonya)', 'ProductVersion': '18.2'} |
RDS:package_id | 222721 |
SHA-1 | C3F8C77AACFA4EE292FF803142A63E8A69E3C6AC |
SHA-256 | 2AD84A9B1BDF4E730BF4A34D34E93F79DF98B0E88CB706C581481D5A131A744F |
SHA-512 | B747DD96CFEABB7FDB42EFF93F121C66D75A6BCCC305799430ED0221A9F9395A0B472BF8AD1B31EC6F8F8E14F22C1B4E97E7007D089EC586DB76001C52F45D73 |
SSDEEP | 96:p5TvvMG8RcFv9wvVvwWvCvilv/89g5SoeW8p/7opAczREjpeg6zp:p5wdV89g5SoeDpmAczREjperzp |
SpecialCode | |
TLSH | T173C1053BE8876E1E897B7F3954C9E05D635ADEB8C3A30D1239BB802523D92447B07076 |
db | nsrl_modern_rds |
insert-timestamp | 1728976958.4894323 |
mimetype | text/x-ruby |
source | snap:EWOurXm5IwzlninRqvPbrGB1T68zBwAS_3 |
tar:gname | root |
tar:uname | root |
hashlookup:parent-total | 379 |
hashlookup:trust | 100 |
The searched file hash is included in 379 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.4/packages//powerpc//ruby-2.5.1.tgz |
MD5 | 6F357BE410952A312F4FABC2C975A37B |
SHA-1 | 011515541ACD4B89C34B9B13C10D3139EF90F15A |
SHA-256 | A93A5A2C5E4F119894F162F0BC1B0A6372295B9356AF43F6D7F9CFDA7CD1B9E7 |
SSDEEP | 98304:wxj7AHh6TRozGIArFJ2/uMIsvIdVl7s8GNCQu5n3UL9a4TLBFzSJSLTHCFwf336S:2jEBe39UlIIZulUL9a4TVMnqfNcbJzC |
TLSH | T12A5633C6CB5451FD8B74D760AE287B5A0EC0836358D88E02A5783BDFAF624C7D2579E0 |
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.9/packages//amd64//logstash-7.10.0v0.tgz |
MD5 | 0DA46B8AC1EEE755C58DAE164C48E5E1 |
SHA-1 | 015C27AABA74A3A39021F1071CBAFC957159B3D3 |
SHA-256 | EFFA8BFB169444D6962D50525086E0D090E831F5926EE0415726B67F6FDCCD44 |
SSDEEP | 3145728:PfoSDFsHqt7L4BwVF+UIUDu1+eK1Jbf72:PH46gQ+UpufCJbfS |
TLSH | T1967833A1D1785434E1ADBB30A4CFAB0420BA14D84FE5DC7EF7AF56B61B063C9911CB29 |
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.1/packages//mips64//ruby-2.3.3.tgz |
MD5 | B46FB1DE41A7325E58690CEF7A0311D9 |
SHA-1 | 02231AF790DBC3B171A75054342F6914A157C8FF |
SHA-256 | CF3B1D81C3E6D44D2CB0208FC3763F27207F65FF05D382640D774BB056B1547D |
SSDEEP | 196608:TWe+IpdvwLUXuamGi8/dnOZcJv7ebXfSp+fPa7:TWDIpd4LUXuam/ciIv7ebXfO+fPE |
TLSH | T171763341A4A4B1D19005D8376229B723633137D67EFAB9C76C1B3FA4A3D295CFD28D84 |
Key | Value |
---|---|
MD5 | C5018D470B22183F067BA3831E453542 |
PackageArch | x86_64 |
PackageDescription | minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking. "I had a class with Jim Weirich on testing last week and we were allowed to choose our testing frameworks. Kirk Haines and I were paired up and we cracked open the code for a few test frameworks... I MUST say that minitest is *very* readable / understandable compared to the 'other two' options we looked at. Nicely done and thank you for helping us keep our mental sanity." -- Wayne E. Seguin minitest/test is a small and incredibly fast unit testing framework. It provides a rich set of assertions to make your tests clean and readable. minitest/spec is a functionally complete spec engine. It hooks onto minitest/test and seamlessly bridges test assertions over to spec expectations. minitest/benchmark is an awesome way to assert the performance of your algorithms in a repeatable manner. Now you can assert that your newb co-worker doesn't replace your linear algorithm with an exponential one! minitest/mock by Steven Baker, is a beautifully tiny mock (and stub) object framework. minitest/pride shows pride in testing and adds coloring to your test output. I guess it is an example of how to write IO pipes too. :P minitest/test is meant to have a clean implementation for language implementors that need a minimal set of methods to bootstrap a working test suite. For example, there is no magic involved for test-case discovery. "Again, I can't praise enough the idea of a testing/specing framework that I can actually read in full in one sitting!" -- Piotr Szotkowski Comparing to rspec: rspec is a testing DSL. minitest is ruby. -- Adam Hawkins, "Bow Before MiniTest" minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply. |
PackageName | ruby2.5-rubygem-minitest |
PackageRelease | lp150.1.6 |
PackageVersion | 5.11.1 |
SHA-1 | 02B53775F2A906007302E978B96420E1B2A7AF4D |
SHA-256 | 39BFE520357A2B4AE33D9353A9DCCD06BCB5FBC3826240993AA5E288228B32C6 |
Key | Value |
---|---|
MD5 | 134F71F1FFD9FC941C06D476524347EE |
PackageArch | x86_64 |
PackageDescription | The Ruby standard library |
PackageName | ruby2.5-stdlib |
PackageRelease | lp154.1.7 |
PackageVersion | 2.5.9 |
SHA-1 | 04FC48798D27283A69987E823C8A27AC973354EC |
SHA-256 | 828250184B320426DAFD3A761141C9A5B3824A31A40EB907FF4BC4A4BAF48813 |
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.6/packages-stable//amd64//ruby-2.4.10.tgz |
MD5 | 0C6A3BD3EC3EAC297AD7E55A6DD0D39A |
SHA-1 | 05B7786B9E551342B0E56E5B997325BEC39B5B10 |
SHA-256 | 8F13006DDD7E9C8EDD1200022BFCC2AF5B8ED63CBF7E6BE4F1E73A06EC1EF34C |
SSDEEP | 98304:xEhulfp8L6QHEMRccK9Xy3GSFTujWTtuEz2w1Z1j+jnf25mq7s9R+zKLhT0MHstD:xt4L6+3Oc4SFTdKwTRIfrz+2LKwsZH |
TLSH | T140563301395B5BEE5F20FD62A0169870868D4C7EFE6A84F0DD45DF976EB1A87839003B |
Key | Value |
---|---|
MD5 | BE3298C537DC8EDC08CF336982FF3E8C |
PackageArch | x86_64 |
PackageDescription | The Ruby standard library |
PackageName | ruby2.5-stdlib |
PackageRelease | 1.1 |
PackageVersion | 2.5.9 |
SHA-1 | 06192CFFE53667B813512CCB48186D51CAFD34C9 |
SHA-256 | 7A856CE1CA817446867C2467C55EBD87926BC488CEEF7DE1FF663DFCA916CA62 |
Key | Value |
---|---|
MD5 | 68879A0C62EF5426347CF616A5F5C555 |
PackageArch | noarch |
PackageDescription | minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking. minitest/unit is a small and incredibly fast unit testing framework. It provides a rich set of assertions to make your tests clean and readable. minitest/spec is a functionally complete spec engine. It hooks onto minitest/unit and seamlessly bridges test assertions over to spec expectations. minitest/benchmark is an awesome way to assert the performance of your algorithms in a repeatable manner. Now you can assert that your newb co-worker doesn't replace your linear algorithm with an exponential one! minitest/mock by Steven Baker, is a beautifully tiny mock (and stub) object framework. minitest/pride shows pride in testing and adds coloring to your test output. I guess it is an example of how to write IO pipes too. :P minitest/unit is meant to have a clean implementation for language implementors that need a minimal set of methods to bootstrap a working test suite. For example, there is no magic involved for test-case discovery. minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply. |
PackageMaintainer | Fedora Project |
PackageName | rubygem-minitest |
PackageRelease | 101.fc24 |
PackageVersion | 5.8.4 |
SHA-1 | 0647A2E02119274C1663E0CDF4EB1C2951C5FE81 |
SHA-256 | 6B4337ED61EA60EE02F054D27C02B37890A621E9790C3DE5E23FDA85FA0D98B3 |
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.5/packages//i386//ruby25-minitest-5.11.3.tgz |
MD5 | CE7A4AB1BF8E168D16BF6661787098C9 |
SHA-1 | 066BDC8CF6A622515E8B7AD396FBA05EE7B7C087 |
SHA-256 | 2B23146624DB88A550955A6D7B68F67976AC97F1F4EF711BFF391470B64D5EFB |
SSDEEP | 3072:RNz2K7F87yG1wTUNHYTwxjwsx0GL45PIK9LfkzSUVCRHE8l0+FW:RNKK7FC1IUhSYFh41ZRHJ/FW |
TLSH | T1DDE3124F9C72E5A4ED7C91282CA9AD04251CB0294BDB4BD336EF496BEFE4600D937C84 |
Key | Value |
---|---|
FileName | https://ftp.lysator.liu.se/pub/OpenBSD/6.5/packages//mips64el//ruby-2.6.2.tgz |
MD5 | CC9F38191298DCE6F8340C0DE0E7AF03 |
SHA-1 | 06B9BD9ED1FCB507A2C94366249EBE55CD27CC17 |
SHA-256 | 0C043B4D5B0FD77A5597E3EA280897A9D314B2114B47906CC1D65AB662B66640 |
SSDEEP | 98304:TOc0/r0L2LflVHLFFFtfn04FVAWThWpAPjsjze/AK/YaoDIDQaAR8XOihMtT7uMQ:Tk/NVHpX5NfhWiQWrYLCP+t/Q |
TLSH | T1405633A92C12DD54A4E5B2E3F06EAF327F5E77F58D9381666A4B30639E0F90113E041E |