We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff2d69 commit 8ffa055Copy full SHA for 8ffa055
2 files changed
src/test/java/DataFileDropboxTest.java
@@ -0,0 +1,8 @@
1
+public class DataFileDropboxTest extends DataFileGenericTest {
2
+ private static final String pathPrefix = "dropbox://test/";
3
+
4
+ @Override
5
+ public String getFullPath(String thing) {
6
+ return pathPrefix + thing;
7
+ }
8
+}
src/test/java/DataFileS3Test.java
+public class DataFileS3Test extends DataFileGenericTest {
+ private static final String pathPrefix = "s3://james-what/"; // This could be an environment variable or something
0 commit comments