Last change
on this file since 3b7daaf was
3b7daaf,
checked in by str4d <str4d@…>, 8 years ago
|
Fill in basic datastructure length tests
|
-
Property mode set to
100644
|
File size:
349 bytes
|
Line | |
---|
1 | package net.i2p.data |
---|
2 | |
---|
3 | import org.scalatest.FunSpec |
---|
4 | import org.scalatest.matchers.ShouldMatchers |
---|
5 | |
---|
6 | /** |
---|
7 | * @author str4d |
---|
8 | */ |
---|
9 | class SignatureSpec extends FunSpec with ShouldMatchers { |
---|
10 | val signature = new Signature |
---|
11 | |
---|
12 | describe("A Signature") { |
---|
13 | it("should be 40 bytes long") { |
---|
14 | signature should have length (40) |
---|
15 | } |
---|
16 | } |
---|
17 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.