Sha256: db2b55caad2ad825cd8bd1af3c17b343c17581e8fbbf7c5ae4cc128bbe6fa135
Contents?: true
Size: 467 Bytes
Versions: 77
Compression:
Stored size: 467 Bytes
Contents
package strand import "testing" func TestRNATranscription(t *testing.T) { for _, test := range rnaTests { if actual := ToRNA(test.input); actual != test.expected { t.Fatalf("FAIL: %s - ToRNA(%q): %q, expected %q", test.description, test.input, actual, test.expected) } t.Logf("PASS: %s", test.description) } } func BenchmarkRNATranscription(b *testing.B) { for i := 0; i < b.N; i++ { for _, test := range rnaTests { ToRNA(test.input) } } }
Version data entries
77 entries across 77 versions & 1 rubygems